//04_Loop concept //prac_06 //wap to print table numbert #include #include void main() { int i,n; clrscr(); printf("Enter table number:"); scanf("%d",&n); for (i=10;i>=1;i--) { printf("%d \n",i*n); } getch(); } /* -----output----- 40 36 32 28 24 20 16 12 8 4 */